22 lines
520 B
C#
22 lines
520 B
C#
using System;
|
|
using AyaNova.Biz;
|
|
namespace AyaNova.Models
|
|
{
|
|
|
|
/// <summary>
|
|
/// Provides mapping during import
|
|
/// </summary>
|
|
public partial class ImportAyaNova7MapItem
|
|
{
|
|
public AyaTypeId NewObjectAyaTypeId { get; set; }
|
|
public Guid V7ObjectId { get; set; }
|
|
|
|
public ImportAyaNova7MapItem(Guid v7Guid, AyaType ayaType, long newId)
|
|
{
|
|
NewObjectAyaTypeId = new AyaTypeId(ayaType, newId);
|
|
V7ObjectId = v7Guid;
|
|
}
|
|
}
|
|
|
|
}
|