init
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
using Kreta.BusinessLogic.Classes.MobileApi.Naplo.V2.Co.Get.Tanulo;
|
||||
|
||||
namespace Kreta.Naplo.Domain.V2.Model.Get.Tanulo
|
||||
{
|
||||
public class ErtekelesFajta
|
||||
{
|
||||
public int? Osztalyzat { get; set; }
|
||||
|
||||
public string Szoveg { get; set; }
|
||||
|
||||
public int? Szazalek { get; set; }
|
||||
|
||||
public static implicit operator ErtekelesFajta(ErtekelesFajtaCo co) => new ErtekelesFajta
|
||||
{
|
||||
Osztalyzat = co.Osztalyzat,
|
||||
Szoveg = co.Szoveg,
|
||||
Szazalek = co.Szazalek
|
||||
};
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user