init
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
using Kreta.BusinessLogic.Classes.MobileApi.Naplo.V2.Co.Post.Naplozas;
|
||||
using Kreta.Core.Validation.Exceptions;
|
||||
|
||||
namespace Kreta.Naplo.Domain.V2.Model.Post.Naplozas
|
||||
{
|
||||
public class OraNaplozasResponse
|
||||
{
|
||||
public int MobilId { get; set; }
|
||||
|
||||
public ValidationException Exception { get; set; }
|
||||
|
||||
public static implicit operator OraNaplozasResponse(OraNaplozasResponseCo co) => new OraNaplozasResponse
|
||||
{
|
||||
MobilId = co.MobilId,
|
||||
Exception = co.Exception
|
||||
};
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user