2025-02-16 00:44:37 +08:00

26 lines
635 B
C#

namespace asg_form.Controllers.Store
{
public class StoreDB
{
public Guid id { get; set; }
public string Name { get; set; }
public long Price { get; set; }
public string description { get; set; }
public string information { get; set; }
public string Type { get; set; }
public List<StoreinfoDB>? buyer { get; set; }=new List<StoreinfoDB>();
}
public class StoreinfoDB
{
public Guid id { get; set; }
public long buyerid { get; set; }
public StoreDB Store { get; set; }
public bool isVerification { get; set; }
}
}