Remotely/Shared/Enums/ChatHistoryItemOrigin.cs
2021-07-29 07:57:31 -07:00

15 lines
232 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace Remotely.Shared.Enums
{
public enum ChatHistoryItemOrigin
{
System,
Self,
Device
}
}