|
|
@@ -0,0 +1,13 @@
|
|
|
+using Quadarax.Application.QLiberace.Base.Entities.Base;
|
|
|
+
|
|
|
+namespace Quadarax.Application.QLiberace.Base.Entities;
|
|
|
+public class Setting : QlbrcEntityTrackedWithoutId
|
|
|
+{
|
|
|
+ public string ModuleCode { get; set; }
|
|
|
+ public string Code { get; set; }
|
|
|
+ public string Description { get; set; }
|
|
|
+
|
|
|
+ public string ValueTypeQN { get; set; }
|
|
|
+ public string Value { get; set; }
|
|
|
+ public string IsEnabled { get; set; }
|
|
|
+}
|