22 lines
No EOL
389 B
C#
22 lines
No EOL
389 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace LANCommander.SDK.Models;
|
|
|
|
public class GameCustomField
|
|
{
|
|
public GameCustomField()
|
|
{
|
|
}
|
|
|
|
public GameCustomField(string name, string value)
|
|
{
|
|
Name = name;
|
|
Value = value;
|
|
}
|
|
|
|
[MaxLength(64)]
|
|
public string Name { get; set; }
|
|
|
|
[MaxLength(1024)]
|
|
public string Value { get; set; }
|
|
} |