using System.ComponentModel.DataAnnotations;
namespace model
{
public class Category
[Key]
public int Id {get;set;}
public string Name {get;set;}
}