Yuyuqt
add: change userid to guid and small fixes
da13799
Raw
History Blame Contribute Delete
274 Bytes
using System;
using System.Collections.Generic;
namespace DbConnect.Entities;
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>();
}