2020-05-27 06:38:40 +00:00
|
|
|
namespace BuecherwurmAPI.Models
|
|
|
|
{
|
2020-05-27 09:21:39 +00:00
|
|
|
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;}
|
2020-05-27 09:21:39 +00:00
|
|
|
public LendTypeEnum LendType {get; set;}
|
2020-05-27 06:38:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|