This repository has been archived on 2023-01-27. You can view files and clone it, but cannot push or open issues or pull requests.
cad/ref/swex/pmpage/InsertNote/csharp/NoteSize.cs
2022-10-15 19:16:08 +02:00

15 lines
197 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace InsertNote
{
public enum NoteSize
{
Small,
Normal,
Large
}
}