1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-07 21:58:06 -05:00
IW4M-Admin/Data/Models/Client/Stats/EFPerformanceBucket.cs
2024-07-02 16:27:28 -05:00

16 lines
320 B
C#

using System.ComponentModel.DataAnnotations;
namespace Data.Models.Client.Stats;
public class EFPerformanceBucket
{
[Key]
public int PerformanceBucketId { get; set; }
[MaxLength(256)]
public string BucketCode { get; set; }
[MaxLength(256)]
public string BucketName { get; set; }
}