17 lines
270 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ProjectOpticsSalon.Entites.Enums;
public enum FrameMaterial
{
None = 0,
Golden = 1,
Titan = 2,
Plastic = 3,
Iron = 4
}