Files
Yae/src/AppCenterSDK/Models/LogWithProperties.cs
2024-03-15 00:08:34 +08:00

8 lines
198 B
C#

namespace YaeAchievement.AppCenterSDK.Models;
public class LogWithProperties : Log {
public IDictionary<string, string> Properties { get; set; } = new Dictionary<string, string>();
}