mirror of
https://github.com/sp-tarkov/modules.git
synced 2025-02-13 09:50:43 -05:00
24 lines
521 B
C#
24 lines
521 B
C#
![]() |
using System.Runtime.Serialization;
|
||
|
|
||
|
namespace Aki.Custom.Models
|
||
|
{
|
||
|
[DataContract]
|
||
|
public struct DifficultyInfo
|
||
|
{
|
||
|
[DataMember(Name = "role")]
|
||
|
public string Role;
|
||
|
|
||
|
[DataMember(Name = "difficulty")]
|
||
|
public string Difficulty;
|
||
|
|
||
|
[DataMember(Name = "data")]
|
||
|
public string Data;
|
||
|
|
||
|
public DifficultyInfo(string role, string difficulty, string data)
|
||
|
{
|
||
|
Role = role;
|
||
|
Difficulty = difficulty;
|
||
|
Data = data;
|
||
|
}
|
||
|
}
|
||
|
}
|