BuecherwurmAPI/Models/Magazin_Command.cs
2020-05-27 08:38:40 +02:00

17 lines
419 B
C#

namespace BuecherwurmAPI.Models
{
public class Magazine
{
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;}
}
}