Buecherwurm/EPaper.cs

23 lines
552 B
C#
Raw Normal View History

2020-04-28 14:07:03 +00:00
namespace Bücherwurm
{
public class EPaper : Magazine, IProduct
{
public EPaper()
{
Category = CategoryEnum.EPaper;
LendTime = 2;
LendType = LendTypeEnum.Virtual;
}
public EPaper(Magazine Parent)
{
Category = CategoryEnum.EPaper;
LendTime = 2;
LendType = LendTypeEnum.Virtual;
Name = Parent.Name;
Run = Parent.Run;
Audience = Parent.Audience;
Topic = Parent.Topic;
}
}
}