mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
16 lines
421 B
C#
16 lines
421 B
C#
using Artemis.Core.Attributes;
|
|
using Artemis.Core.Plugins.Abstract;
|
|
using Artemis.Core.Plugins.Interfaces;
|
|
|
|
namespace Artemis.Plugins.Modules.General
|
|
{
|
|
public class GeneralDataModel : ModuleDataModel
|
|
{
|
|
public GeneralDataModel(IModule module) : base(module)
|
|
{
|
|
}
|
|
|
|
[DataModelProperty(DisplayName = "Unique boolean")]
|
|
public bool PropertyUniqueToThisDm { get; set; }
|
|
}
|
|
} |