27 lines
546 B
C#
27 lines
546 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using AyaNova.Biz;
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace AyaNova.Models
|
|
{
|
|
|
|
public partial class SearchKey
|
|
{
|
|
public long Id { get; set; }
|
|
public uint ConcurrencyToken { get; set; }
|
|
|
|
|
|
[Required]
|
|
public long WordId { get; set; }
|
|
[Required]
|
|
public long ObjectId { get; set; }
|
|
[Required]
|
|
public AyaType ObjectType { get; set; }
|
|
public bool InName { get; set; }
|
|
|
|
|
|
}
|
|
}
|