Skip to content

Commit e16e3af

Browse files
committed
Calendar Api Fundamentals
1 parent 4bdfdad commit e16e3af

8 files changed

Lines changed: 624 additions & 26 deletions

File tree

342 Bytes
Binary file not shown.
143 Bytes
Binary file not shown.

.vs/GoogleApis.Blazor/v17/.suo

13 KB
Binary file not shown.

GoogleApis.Blazor/AllEnums.cs

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
using System.ComponentModel;
2-
2+
#pragma warning disable CS1591
33
namespace GoogleApis.Blazor
44
{
55
public static class EnumExtensions
@@ -60,4 +60,24 @@ public enum CredentialValueType
6060
ExpiresIn,
6161
}
6262

63+
public enum CalendarValueType
64+
{
65+
[Description("summary")]
66+
Summary,
67+
[Description("description")]
68+
Description,
69+
[Description("location")]
70+
Location,
71+
}
72+
73+
public enum EventValueType
74+
{
75+
[Description("summary")]
76+
Summary,
77+
[Description("description")]
78+
Description,
79+
[Description("location")]
80+
Location,
81+
}
82+
6383
}

0 commit comments

Comments
 (0)