You've already forked YY.EventLogReaderAssistant
mirror of
https://github.com/BDDSM/YY.EventLogReaderAssistant.git
synced 2025-07-06 06:17:27 +02:00
20 lines
403 B
C#
20 lines
403 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace YY.EventLogReaderAssistant.Models
|
|
{
|
|
public class Metadata
|
|
{
|
|
[Key]
|
|
public long Code { get; set; }
|
|
public Guid Uuid { get; set; }
|
|
[MaxLength(250)]
|
|
public string Name { get; set; }
|
|
|
|
public override string ToString()
|
|
{
|
|
return Name;
|
|
}
|
|
}
|
|
}
|