26 lines
635 B
C#
Raw Normal View History

2024-08-10 19:01:49 +08:00
namespace asg_form.Controllers.Store
{
public class StoreDB
{
2025-02-16 00:44:37 +08:00
public Guid id { get; set; }
2024-08-10 19:01:49 +08:00
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
{
2025-02-16 00:44:37 +08:00
public Guid id { get; set; }
2024-08-10 19:01:49 +08:00
public long buyerid { get; set; }
public StoreDB Store { get; set; }
public bool isVerification { get; set; }
}
}