Spaces:
Sleeping
Sleeping
File size: 271 Bytes
c596926 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | 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>();
}
|