mirror of
https://github.com/hargata/lubelog.git
synced 2025-12-10 18:36:38 -06:00
9 lines
117 B
C#
9 lines
117 B
C#
namespace CarCareTracker.Models
|
|
{
|
|
public enum FileUploadType
|
|
{
|
|
File = 0,
|
|
Link = 1
|
|
}
|
|
}
|