using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Wino.Core.Domain.Enums;
///
/// Represents the response status of an attendee to a calendar event
///
public enum AttendeeResponseStatus
{
///
/// The attendee has not responded to the invitation
///
NeedsAction = 0,
///
/// The attendee has accepted the invitation
///
Accepted = 1,
///
/// The attendee has declined the invitation
///
Declined = 2,
///
/// The attendee has tentatively accepted the invitation
///
Tentative = 3
}