BuecherwurmAPI/Models/Magazin.cs

17 lines
414 B
C#
Raw Normal View History

2020-05-28 11:47:02 +00:00
namespace BuecherwurmAPI.Models
{
public class Magazin
{
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;}
}
}