Yuyuqt
feat: authorization
c596926
Raw
History Blame
271 Bytes
using System;
using System.Collections.Generic;
namespace Database.Models;
public partial class Category
{
public int Id { get; set; }
public string Name { get; set; } = null!;
public virtual ICollection<Book> Books { get; set; } = new List<Book>();
}