File size: 198 Bytes
afcfd4d
 
 
 
 
 
 
1
2
3
4
5
6
7
8
class Incident:
    def __init__(self, ticket_id, description):
        self.ticket_id = ticket_id
        self.description = description

    def get_ticket_id(self):
        return self.ticket_id