mirror of
https://github.com/denglihong2007/CRSim
synced 2026-06-19 07:45:45 +08:00
12 lines
258 B
C#
12 lines
258 B
C#
using CRSim.Core.Models.Plugin;
|
|
|
|
namespace CRSim.Core.Models
|
|
{
|
|
public class StyleInfo
|
|
{
|
|
public string[] Parameters { get; set; } = [];
|
|
public string Type { get; set; } = "";
|
|
public string Region { get; set; } = "";
|
|
}
|
|
}
|