BuecherwurmAPI/Models/Magazin.cs

17 lines
414 B
C#
Raw Normal View History

2020-05-27 06:38:40 +00:00
namespace BuecherwurmAPI.Models
{
public class Magazin
2020-05-27 06:38:40 +00:00
{
public int ProductId {get; set;}
public CategoryEnum Category {get; set;}
public int LendTime {get; set;}
public string Name {get; set;}
public string Run {get; set;}
public string Audience {get; set;}
public string Topic {get; set;}
public LendTypeEnum LendType {get; set;}
2020-05-27 06:38:40 +00:00
}
}