25 lines
560 B
C#
25 lines
560 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using CustomComponents.Helpers;
|
|||
|
|
|||
|
namespace WinFormForTest.TestClasses
|
|||
|
{
|
|||
|
public class Plant
|
|||
|
{
|
|||
|
[AlwaysCreate]
|
|||
|
public string Type { get; set; }
|
|||
|
public string Name { get; set; }
|
|||
|
public string Color { get; set; }
|
|||
|
public Plant(string type, string name, string color)
|
|||
|
{
|
|||
|
Type = type;
|
|||
|
Name = name;
|
|||
|
Color = color;
|
|||
|
}
|
|||
|
public Plant() { }
|
|||
|
}
|
|||
|
}
|