Plix/PlixP/Models/Category.cs

16 lines
325 B
C#
Raw Normal View History

2021-01-15 18:13:54 +03:30
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PlixP.Models
{
[Serializable]
public class Category : Entity
{
public string Name { get; set; }
public virtual ICollection<CategoryMovie> Movies { get; set; }
}
}