You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
468 B
26 lines
468 B
namespace BuecherwurmAPI.Models |
|
{ |
|
public interface IProductPost |
|
{ |
|
CategoryEnum Category {get; set;} |
|
|
|
long LendTime {get; set;} |
|
|
|
string Title {get; set;} |
|
|
|
LendTypeEnum LendType {get; set;} |
|
} |
|
|
|
public interface IProduct |
|
{ |
|
long ProductId {get; set;} |
|
|
|
CategoryEnum Category {get; set;} |
|
|
|
long LendTime {get; set;} |
|
|
|
string Title {get; set;} |
|
|
|
LendTypeEnum LendType {get; set;} |
|
} |
|
} |