mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 01:38:27 -04:00
12 lines
245 B
C#
12 lines
245 B
C#
using System;
|
|
|
|
namespace NadekoBot.Core.Modules.Searches.Common
|
|
{
|
|
public class TimeData
|
|
{
|
|
public string Address { get; set; }
|
|
public DateTime Time { get; set; }
|
|
public string TimeZoneName { get; set; }
|
|
}
|
|
}
|