25 lines
436 B
C#
25 lines
436 B
C#
using AyaNova.Biz;
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace AyaNova.Models
|
|
{
|
|
|
|
public class SearchKey
|
|
{
|
|
public long Id { get; set; }
|
|
public uint Concurrency { get; set; }
|
|
|
|
|
|
[Required]
|
|
public long WordId { get; set; }
|
|
[Required]
|
|
public long ObjectId { get; set; }
|
|
[Required]
|
|
public AyaType ObjectType { get; set; }
|
|
|
|
|
|
|
|
}
|
|
}
|