9 lines
220 B
C#
9 lines
220 B
C#
|
namespace Filtration.ThemeEditor.ViewModels
|
|||
|
{
|
|||
|
public class StrIntThemeComponentViewModel : ThemeComponentViewModel
|
|||
|
{
|
|||
|
public int Value { get; set; }
|
|||
|
public int SecondValue { get; set; }
|
|||
|
}
|
|||
|
}
|