18 lines
234 B
C#
18 lines
234 B
C#
using System;
|
|
|
|
[Serializable]
|
|
public class remarks_class
|
|
{
|
|
public bool textfield_foldout;
|
|
|
|
public int textfield_length;
|
|
|
|
public string textfield;
|
|
|
|
public remarks_class()
|
|
{
|
|
textfield_length = 1;
|
|
textfield = string.Empty;
|
|
}
|
|
}
|