mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-07 21:58:06 -05:00
21 lines
433 B
C#
21 lines
433 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Data.Models.Client.Stats;
|
|
|
|
public class EFPerformanceBucket
|
|
{
|
|
[Key] public int PerformanceBucketId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Identifier for Bucket
|
|
/// </summary>
|
|
[MaxLength(256)]
|
|
public string Code { get; set; }
|
|
|
|
/// <summary>
|
|
/// Friendly name for Bucket
|
|
/// </summary>
|
|
[MaxLength(256)]
|
|
public string Name { get; set; }
|
|
}
|