The easy to use and full featured Irc Bot everyone is talking about!
Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
1234567891011121314151617 |
- namespace Interface
- {
- public class LocationInfo
- {
- public string Name { get; set; }
-
- public LocationInfo()
- {
- SetDefaults();
- }
-
- public void SetDefaults()
- {
- Name = string.Empty;
- }
- }
- }
|