Advertisement
Guest User

Untitled

a guest
Jul 18th, 2019
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. using System;
  2. using System.ComponentModel.DataAnnotations;
  3.  
  4. namespace AskMeDudeClassLibrary
  5. {
  6. public class Category
  7. {
  8. public int CategoryId { get; set; }
  9.  
  10.  
  11. [StringLength(250), MinLength(1)]
  12. [Required]
  13. public string Name { get; set; }
  14.  
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement