mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-07 21:58:06 -05:00
16 lines
320 B
C#
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; }
|
|
}
|